home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / hole-0.2 / hole-0 / hole / Makefile < prev   
Encoding:
Makefile  |  1995-03-03  |  180 b   |  11 lines

  1. SHELL = /bin/sh
  2. CC = gcc
  3. CFLAGS = -Wall -pedantic -O2 -m486 -fomit-frame-pointer
  4. LDFLAGS = -N -s
  5.  
  6. hole: hole.c
  7.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ hole.c
  8.  
  9. clean:
  10.     rm -f *~ core hole
  11.